for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
export * from 'myrmidon';
export function mergeConfigs(...configs) {
const config = {};
for (const [ conf = {} ] of configs.reverse()) {
for (const key of Object.keys(conf)) {
conf
/** global: conf */
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.
config[key] = conf[key];
}
return config;
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.